home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / dev / gui / gui4cli.lha / Gui4Cli / Docs / Tutorials / xTextBox.gc < prev   
Encoding:
Gui4CLI script  |  1999-12-01  |  835 b   |  33 lines

  1. G4C
  2.  
  3. ; A Simple xTEXTBOX with a whole bunch of ATTRIBUTES..
  4. ; ----------------------------------------------------------
  5.  
  6. WINBIG 50 50 341 114 "xTextBox"
  7. wintype 11110001
  8. resinfo 8 640 256            ; my Workbench's resolution..
  9. winbackground pattern 1 3    ; a fancy background..
  10.  
  11. xonload
  12.     guiopen #this
  13.  
  14. xonclose
  15.     guiquit #this
  16.  
  17. XTEXTBOX 6 15 324 93 "" "This is some sample text, so that I can see if this xTextBox thing works, or what..\nThis is after a new line\n\nAnd this, after 2 newlines..\nHow am I doing ?"
  18.  
  19.     ; define the style of the text inside the box..
  20.     attr tbstyle 2/1/outline/center
  21.  
  22.     ; define the style of the box itself..
  23.     attr tbox 2/1/3/icondrop/in
  24.  
  25.    ; add a fancy title..
  26.     attr title "2/1/outline/left/above/This is my Title:"
  27.  
  28.     ; tell it how to resize
  29.     attr resize  0022
  30.  
  31.     ; add more stuff & commands here..
  32.  
  33.